home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DEBUG / OBJTEST / MAIN.DFM / MAIN.txt
Text File  |  1996-06-06  |  4KB  |  191 lines

  1. object frmMain: TfrmMain
  2.   Left = 260
  3.   Top = 111
  4.   Width = 507
  5.   Height = 344
  6.   Caption = 'frmMain'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   TextHeight = 16
  16.   object Label2: TLabel
  17.     Left = 6
  18.     Top = 78
  19.     Width = 59
  20.     Height = 16
  21.     Caption = 'Numbers'
  22.   end
  23.   object labMean: TLabel
  24.     Left = 240
  25.     Top = 138
  26.     Width = 52
  27.     Height = 16
  28.     Caption = 'Mean = '
  29.   end
  30.   object Label6: TLabel
  31.     Left = 6
  32.     Top = 48
  33.     Width = 70
  34.     Height = 16
  35.     Caption = 'String Text'
  36.   end
  37.   object labString: TLabel
  38.     Left = 238
  39.     Top = 48
  40.     Width = 4
  41.     Height = 16
  42.   end
  43.   object Label1: TLabel
  44.     Left = 390
  45.     Top = 48
  46.     Width = 4
  47.     Height = 16
  48.   end
  49.   object Label3: TLabel
  50.     Left = 0
  51.     Top = 174
  52.     Width = 478
  53.     Height = 16
  54.     Caption = 
  55.       'INSTRUCTIONS    (Also see the Comments Unit for additional infor' +
  56.       'mation).'
  57.   end
  58.   object Shape1: TShape
  59.     Left = 0
  60.     Top = 168
  61.     Width = 499
  62.     Height = 5
  63.     Brush.Color = clBlue
  64.   end
  65.   object Memo1: TMemo
  66.     Left = 108
  67.     Top = 72
  68.     Width = 97
  69.     Height = 61
  70.     TabOrder = 1
  71.     OnEnter = Memo1Enter
  72.   end
  73.   object butAddObject: TButton
  74.     Left = 6
  75.     Top = 6
  76.     Width = 199
  77.     Height = 27
  78.     Caption = 'Add New Object to StringList'
  79.     TabOrder = 2
  80.     OnClick = butAddObjectClick
  81.   end
  82.   object butDeleteObject: TButton
  83.     Left = 384
  84.     Top = 6
  85.     Width = 103
  86.     Height = 27
  87.     Caption = 'Delete Object'
  88.     TabOrder = 3
  89.     TabStop = False
  90.     OnClick = butDeleteObjectClick
  91.   end
  92.   object edtString: TEdit
  93.     Left = 108
  94.     Top = 42
  95.     Width = 97
  96.     Height = 24
  97.     TabOrder = 0
  98.   end
  99.   object Button4: TButton
  100.     Left = 42
  101.     Top = 138
  102.     Width = 61
  103.     Height = 21
  104.     Caption = 'Calc'
  105.     TabOrder = 4
  106.     TabStop = False
  107.     OnClick = Button4Click
  108.   end
  109.   object panHoldMemoObject: TPanel
  110.     Left = 240
  111.     Top = 72
  112.     Width = 97
  113.     Height = 61
  114.     BevelOuter = bvLowered
  115.     TabOrder = 5
  116.   end
  117.   object lstObjectString: TListBox
  118.     Left = 390
  119.     Top = 72
  120.     Width = 97
  121.     Height = 61
  122.     TabStop = False
  123.     ItemHeight = 16
  124.     TabOrder = 6
  125.     OnClick = lstObjectStringClick
  126.   end
  127.   object chkAutoCalc: TCheckBox
  128.     Left = 238
  129.     Top = 18
  130.     Width = 129
  131.     Height = 17
  132.     TabStop = False
  133.     Caption = 'Auto Calculate'
  134.     State = cbChecked
  135.     TabOrder = 7
  136.   end
  137.   object edtControl: TEdit
  138.     Left = 108
  139.     Top = 138
  140.     Width = 97
  141.     Height = 24
  142.     TabStop = False
  143.     TabOrder = 8
  144.   end
  145.   object Memo2: TMemo
  146.     Left = 0
  147.     Top = 192
  148.     Width = 499
  149.     Height = 121
  150.     TabStop = False
  151.     Lines.Strings = (
  152.       '1) Enter text into the editbox labeled "String Text."'
  153.       ''
  154.       
  155.         '2) Enter one or more numbers into the memo labeled "Numbers," me' +
  156.         'mo1.'
  157.       ''
  158.       
  159.         '3) Click "Add New Object to StringList." The contents of the mem' +
  160.         'o are '
  161.       
  162.         'copied to the middle memo and the mean of the numbers is display' +
  163.         'ed '
  164.       'below.'
  165.       ''
  166.       
  167.         '4) Repeat the above several times using different text and numbe' +
  168.         'rs.'
  169.       ''
  170.       
  171.         '5) Select an item from the listbox on the right. The memo associ' +
  172.         'ated with '
  173.       
  174.         'that object is displayed in the middle memo, along with its mean' +
  175.         ' below.'
  176.       ''
  177.       
  178.         '6) Click "Delete Object." The object associated with the selecte' +
  179.         'd item in '
  180.       'the listbox on the right is deleted.'
  181.       ''
  182.       
  183.         '7) Click "Calc." The mean of the numbers in the left memo are ca' +
  184.         'lculated '
  185.       'and displayed.')
  186.     ReadOnly = True
  187.     ScrollBars = ssVertical
  188.     TabOrder = 9
  189.   end
  190. end
  191.